home *** CD-ROM | disk | FTP | other *** search
/ American History: Interactive Maps & User's Guide / American History: Interactive Maps & User's Guide.iso / pc / TIMESCPE.dxr / 00192_GTour&Credit Movie jump.ls < prev    next >
Encoding:
Text File  |  2000-01-25  |  672 b   |  26 lines

  1. on mouseDown
  2.   global gMainPath
  3.   set lStrName to the name of member the castNum of sprite 47
  4.   case lStrName of
  5.     "credit.green":
  6.       set the cursor of sprite 47 to 0
  7.       cursor(4)
  8.       go(1, gMainPath & "credits")
  9.     "guideTour.green":
  10.       set the cursor of sprite 47 to 0
  11.       cursor(4)
  12.       if the platform contains "windows" then
  13.         go(1, gMainPath & "GTour\GTour")
  14.       else
  15.         go(1, gMainPath & "GTour:GTour")
  16.       end if
  17.     "directions.glow":
  18.       set the castNum of sprite 47 to the number of member "directions.pict"
  19.       updateStage()
  20.       repeat while the mouseDown
  21.         nothing()
  22.       end repeat
  23.   end case
  24.   updateStage()
  25. end
  26.